From: Guillaume Gomez Date: Fri, 28 Jul 2017 19:37:08 +0000 (+0200) Subject: Update error-chain dep for crates-io as well X-Git-Tag: archive/raspbian/0.35.0-2+rpi1~3^2^2^2^2^2^2^2~22^2~8^2~2^2~1 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=6ca1351af733d03bbccc835ce3d9164e344f0a00;p=cargo.git Update error-chain dep for crates-io as well --- diff --git a/Cargo.lock b/Cargo.lock index dcf605c3b..5ab14b38a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -152,7 +152,7 @@ name = "crates-io" version = "0.10.0" dependencies = [ "curl 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", - "error-chain 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.11.0-rc.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -226,14 +226,6 @@ dependencies = [ "regex 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "error-chain" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "backtrace 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "error-chain" version = "0.11.0-rc.2" @@ -901,7 +893,6 @@ dependencies = [ "checksum docopt 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3b5b93718f8b3e5544fcc914c43de828ca6c6ace23e0332c6080a2977b49787a" "checksum dtoa 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "80c8b71fd71146990a9742fc06dcbbde19161a267e0ad4e572c35162f4578c90" "checksum env_logger 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3ddf21e73e016298f5cb37d6ef8e8da8e39f91f9ec8b0df44b7deb16a9f8cd5b" -"checksum error-chain 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d9435d864e017c3c6afeac1654189b06cdb491cf2ff73dbf0d73b0f292f42ff8" "checksum error-chain 0.11.0-rc.2 (registry+https://github.com/rust-lang/crates.io-index)" = "38d3a55d9a7a456748f2a3912c0941a5d9a68006eb15b3c3c9836b8420dc102d" "checksum filetime 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "5363ab8e4139b8568a6237db5248646e5a8a2f89bd5ccb02092182b11fd3e922" "checksum flate2 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)" = "36df0166e856739905cd3d7e0b210fe818592211a008862599845e012d8d304c" diff --git a/src/cargo/util/errors.rs b/src/cargo/util/errors.rs index dd748a459..557901afe 100644 --- a/src/cargo/util/errors.rs +++ b/src/cargo/util/errors.rs @@ -1,3 +1,5 @@ +#![allow(unknown_lints)] + use std::error::Error; use std::fmt; use std::io; diff --git a/src/crates-io/Cargo.toml b/src/crates-io/Cargo.toml index 37c74b94e..41b506832 100644 --- a/src/crates-io/Cargo.toml +++ b/src/crates-io/Cargo.toml @@ -14,7 +14,7 @@ path = "lib.rs" [dependencies] curl = "0.4" -error-chain = "0.10.0" +error-chain = "0.11.0-rc.2" serde = "1.0" serde_derive = "1.0" serde_json = "1.0" diff --git a/src/crates-io/lib.rs b/src/crates-io/lib.rs index 05ca8e8de..cd8df416d 100644 --- a/src/crates-io/lib.rs +++ b/src/crates-io/lib.rs @@ -1,3 +1,5 @@ +#![allow(unknown_lints)] + extern crate curl; extern crate url; #[macro_use]